home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Resources
/
Security
/
McAfee SiteAdvisor 26.6
/
safe.xpi
/
chrome
/
safe.jar
/
content
/
aboutdlg.xul
< prev
next >
Wrap
Extensible Markup Language
|
2007-07-22
|
1KB
|
28 lines
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<!DOCTYPE overlay SYSTEM "chrome://safe/locale/safe.dtd">
<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml" buttons="accept" id="safe-about" screenX="10" screenY="10" width="500" height="300" persist="screenX,screenY" windowtype="safe:about" title="&safe.about.dlg.title;">
<hbox align="center">
<html:iframe id="aboutiframe" src="chrome://safe/content/aboutdlg.xhtml" height="200" flex="1"/>
</hbox>
<hbox flex="1" align="center">
<label value="&safe.about.dlg.version; "/>
<label id="versionstr" value=""/>
<label value="&safe.about.dlg.build; "/>
<label id="buildstr" value=""/>
</hbox>
<script>
document.getElementById("versionstr").value = window.arguments[0];
document.getElementById("buildstr").value = window.arguments[1];
function getArgString()
{
return window.arguments[2];
}
</script>
<keyset id="SafeKeyset">
<key keycode="VK_ESCAPE" oncommand="window.close();"/>
</keyset>
</dialog>